40909a4cae83cf465c9ea3fab8a8fa0f3dd2e651,src/frontend/org/voltdb/dtxn/InFlightTxnState.java,InFlightTxnState,addResponse,#number#ClientResponseImpl#,84
Before Change
msg += "\n Expected number of results: " + resultsForComparison.length;
msg += "\n Mismatched number of results: " + curr_results.length;
// die die die
VoltDB.crashGlobalVoltDB(msg, false, null); // kills process
throw new RuntimeException(msg); // gets called only by test code
}
for (int i = 0; i < resultsForComparison.length; ++i)
{
After Change
msg += "\n from execution site: " + coordinatorHSId;
msg += "\n Expected number of results: " + resultsForComparison.length;
msg += "\n Mismatched number of results: " + curr_results.length;
msg += "\n Read-only: " + new Boolean(isReadOnly).toString();
if (isReadOnly) {
hostLog.warn(msg);
}
else {
// die die die
VoltDB.crashGlobalVoltDB(msg, false, null); // kills process
throw new RuntimeException(msg); // gets called only by test code
}
}
for (int i = 0; i < resultsForComparison.length; ++i)